home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 326-350 / disk_333 / multiplot / source / mplot_src / struct.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  691b  |  43 lines

  1. /* struct.h */
  2. #ifndef FFP_H
  3. #include "ffp.h"
  4. #endif
  5.  
  6. struct PlotRegion {
  7.    FFP XMin, XMax, YMin, YMax;
  8. };
  9.  
  10. struct Plot {
  11.    struct Plot *NextPlot;
  12.    short NPts;
  13.    short Color;
  14.    short Lines;
  15.    short PointSize;
  16.    short PointType;
  17.    short Enabled;
  18.    short Continued;
  19.    struct PlotRegion *Reg;
  20.    FFP *x, *y, *e;
  21.    short *xp, *yp, *ep;
  22. };
  23.  
  24. struct Tics {
  25.    short NX, NY;
  26.    short *xp, *yp;
  27.    FFP *x, *y;
  28. };
  29.  
  30. struct Pict  {
  31.    short NPlt;
  32.    short Grid;
  33.    short ErrBar;
  34.    short ShowErr;
  35.    short XRegionLock, YRegionLock;
  36.    short Axes;
  37.    struct Tics *Tics;
  38.    struct PlotRegion *CurrReg, *NewReg;
  39.    FFP XScale, YScale;
  40.    char *Title, *XLabel, *YLabel;
  41.    struct Plot *Plot;
  42. };
  43.